Submodules
Submodules#
Submodules are repositories inside other Git repositories.
git submodule add -b master [URL to Git repo]
git submodule init
git submodule update
All submodules handle .gitmodules file
Tips#
submodule don’t fetch from server automatically to download all submodules
fetch recursive
git submodule update --init --recursive